home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / clinic / OutLookU.dfm / OutLookU.txt
Text File  |  1998-03-11  |  1KB  |  83 lines

  1. object Form1: TForm1
  2.   Left = 200
  3.   Top = 108
  4.   Width = 145
  5.   Height = 218
  6.   Caption = 'Outlook'
  7.   Font.Charset = DEFAULT_CHARSET
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object Label1: TLabel
  15.     Left = 8
  16.     Top = 8
  17.     Width = 51
  18.     Height = 13
  19.     Caption = '&First name:'
  20.     FocusControl = edtFirstName
  21.   end
  22.   object Label2: TLabel
  23.     Left = 8
  24.     Top = 48
  25.     Width = 52
  26.     Height = 13
  27.     Caption = '&Last name:'
  28.     FocusControl = edtLastName
  29.   end
  30.   object Label3: TLabel
  31.     Left = 8
  32.     Top = 88
  33.     Width = 119
  34.     Height = 13
  35.     Caption = '&Business Telephone No.:'
  36.     FocusControl = edtBusTelNo
  37.   end
  38.   object Button1: TButton
  39.     Left = 8
  40.     Top = 128
  41.     Width = 121
  42.     Height = 25
  43.     Caption = 'Submit to &OutLook'
  44.     Default = True
  45.     TabOrder = 0
  46.     OnClick = Button1Click
  47.   end
  48.   object edtFirstName: TEdit
  49.     Left = 8
  50.     Top = 24
  51.     Width = 121
  52.     Height = 21
  53.     TabOrder = 1
  54.     Text = 'Brian'
  55.   end
  56.   object edtLastName: TEdit
  57.     Left = 8
  58.     Top = 64
  59.     Width = 121
  60.     Height = 21
  61.     TabOrder = 2
  62.     Text = 'Long'
  63.   end
  64.   object edtBusTelNo: TEdit
  65.     Left = 8
  66.     Top = 104
  67.     Width = 121
  68.     Height = 21
  69.     TabOrder = 3
  70.     Text = '0800 NOT REALLY'
  71.   end
  72.   object Button2: TButton
  73.     Left = 8
  74.     Top = 160
  75.     Width = 121
  76.     Height = 25
  77.     Caption = 'Submit to &OutLook #2'
  78.     Default = True
  79.     TabOrder = 4
  80.     OnClick = Button2Click
  81.   end
  82. end
  83.